home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / et / et-2_2.lha / et2.2 / src / regex.h < prev    next >
C/C++ Source or Header  |  1990-11-28  |  4KB  |  103 lines

  1. #ifdef __GNUG__
  2. #pragma once
  3. #endif
  4.  
  5. /* Definitions for data structures callers pass the regex library.
  6.    Copyright (C) 1985 Richard M. Stallman
  7.  
  8. This program is distributed in the hope that it will be useful,
  9. but without any warranty.  No author or distributor
  10. accepts responsibility to anyone for the consequences of using it
  11. or for whether it serves any particular purpose or works at all,
  12. unless he says so in writing.
  13.  
  14.    Permission is granted to anyone to distribute verbatim copies
  15.    of this program's source code as received, in any medium, provided that
  16.    the copyright notice, the nonwarraty notice above
  17.    and this permission notice are preserved,
  18.    and that the distributor grants the recipient all rights
  19.    for further redistribution as permitted by this notice,
  20.    and informs him of these rights.
  21.  
  22.    Permission is granted to distribute modified versions of this
  23.    program's source code, or of portions of it, under the above
  24.    conditions, plus the conditions that all changed files carry
  25.    prominent notices stating who last changed them and that the
  26.    derived material, including anything packaged together with it and
  27.    conceptually functioning as a modification of it rather than an
  28.    application of it, is in its entirety subject to a permission
  29.    notice identical to this one.
  30.  
  31.    Permission is granted to distribute this program (verbatim or
  32.    as modified) in compiled or executable form, provided verbatim
  33.    redistribution is permitted as stated above for source code, and
  34.     A.  it is accompanied by the corresponding machine-readable
  35.       source code, under the above conditions, or
  36.     B.  it is accompanied by a written offer, with no time limit,
  37.       to distribute the corresponding machine-readable source code,
  38.       under the above conditions, to any one, in return for reimbursement
  39.       of the cost of distribution.   Verbatim redistribution of the
  40.       written offer must be permitted.  Or,
  41.     C.  it is distributed by someone who received only the
  42.       compiled or executable form, and is accompanied by a copy of the
  43.       written offer of source code which he received along with it.
  44.  
  45.    Permission is granted to distribute this program (verbatim or as modified)
  46.    in executable form as part of a larger system provided that the source
  47.    code for this program, including any modifications used,
  48.    is also distributed or offered as stated in the preceding paragraph.
  49.  
  50. In other words, you are welcome to use, share and improve this program.
  51. You are forbidden to forbid anyone else to use, share and improve
  52. what you give them.   Help stamp out software-hoarding!  */
  53.  
  54. /*
  55.  * C++ - Version
  56.  */
  57.  
  58. #ifndef RE_NREGS
  59. #define RE_NREGS 10
  60. #endif
  61.  
  62. typedef unsigned char byte;
  63.  
  64. /* This data structure is used to represent a compiled pattern. */
  65.  
  66. struct re_pattern_buffer
  67.   {
  68.     char *buffer;       /* Space holding the compiled pattern commands. */
  69.     int allocated;      /* Size of space that  buffer  points to */
  70.     int used;           /* Length of portion of buffer actually occupied */
  71.     char *fastmap;      /* Pointer to fastmap, if any, or zero if none. */
  72.             /* re_search uses the fastmap, if there is one,
  73.                to skip quickly over totally implausible characters */
  74.     byte *translate;    /* Translate table to apply to all characters before comparing.
  75.                Or zero for no translation.
  76.                The translation is applied to a pattern when it is compiled
  77.                and to data when it is matched. */
  78.     char fastmap_accurate;
  79.             /* Set to zero when a new pattern is stored,
  80.                set to one when the fastmap is updated from it. */
  81.     char can_be_null;   /* Set to one by compiling fastmap
  82.                if this pattern might match the null string.
  83.                It does not necessarily match the null string
  84.                in that case, but if this is zero, it cannot.  */
  85.   };
  86.  
  87. /* Structure to store "register" contents data in.
  88.  
  89.    Pass the address of such a structure as an argument to re_match, etc.,
  90.    if you want this information back.
  91.  
  92.    start[i] and end[i] record the string matched by \( ... \) grouping i,
  93.    for i from 1 to RE_NREGS - 1.
  94.    start[0] and end[0] record the entire string matched. */
  95.  
  96. struct re_registers
  97.   {
  98.     int start[RE_NREGS];
  99.     int end[RE_NREGS];
  100.   };
  101.  
  102. char *re_compile_pattern();
  103.